home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1997 October / Designer's Club 1997 October.iso / mac / Idea Source™ / Main.DIR / 00012.ls < prev    next >
Encoding:
Text File  |  1997-08-23  |  821 b   |  32 lines

  1. on exitFrame
  2.   go(the frame)
  3.   if rollOver(2) then
  4.     set the visible of sprite 7 to 1
  5.     set the visible of sprite 8 to 1
  6.     set the visible of sprite 9 to 1
  7.     set the visible of sprite 6 to 0
  8.     updateStage()
  9.   end if
  10.   if rollOver(3) then
  11.     set the visible of sprite 6 to 1
  12.     set the visible of sprite 8 to 1
  13.     set the visible of sprite 9 to 1
  14.     set the visible of sprite 7 to 0
  15.     updateStage()
  16.   end if
  17.   if rollOver(4) then
  18.     set the visible of sprite 7 to 1
  19.     set the visible of sprite 6 to 1
  20.     set the visible of sprite 9 to 1
  21.     set the visible of sprite 8 to 0
  22.     updateStage()
  23.   end if
  24.   if rollOver(5) then
  25.     set the visible of sprite 7 to 1
  26.     set the visible of sprite 8 to 1
  27.     set the visible of sprite 6 to 1
  28.     set the visible of sprite 9 to 0
  29.     updateStage()
  30.   end if
  31. end
  32.